home *** CD-ROM | disk | FTP | other *** search
/ Georgia Wildfire Prevention / Georgia Wildfire Prevention.iso / pc / media / dirs / BackUp / Login.dir / 00007_Script_Movie Script < prev    next >
Text File  |  2002-10-11  |  803b  |  27 lines

  1. global HotField
  2.  
  3. --Sends a message the the keys to preform function keyBoardDown or keyBoardUp, if the have it.
  4. on keydown me
  5.   set TheKey = the keypressed
  6.   if (TheKey).chartonum = 13 or (TheKey).chartonum = 9 then --If the user presses RETURN (ENTER key on the PC) or TAB the next field goes active.
  7.     case (HotField) of
  8.       "First Name" : HotField = "Last Name"
  9.       "Last Name" : HotField = "Address"
  10.       "Address" : HotField = "City"
  11.       "City" : Hotfield = "State"
  12.       "State" : HotField = "Zip Code"
  13.       "Zip Code" : HotField = "Age"
  14.       "Age" : Hotfield = "First Name"
  15.     end case
  16.   end if
  17.   sendallsprites (#keyBoardDown)
  18.   sendallsprites (#FieldFiller, TheKey)
  19.   updatestage
  20. end
  21.  
  22. --Loops back to the current frame.
  23. on exitframe me
  24.   go the frame
  25. end
  26.  
  27.